home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / demos / GL / atlantis / Makefile < prev    next >
Makefile  |  1994-08-01  |  450b  |  23 lines

  1. #!smake
  2.  
  3. include ${ROOT}/usr/include/make/commondefs
  4.  
  5. # Libraries to link with to get the GL (-lsun is necessary for correct
  6. # remote graphics operation when running NIS).
  7.  
  8. TARGETS    = atlantis
  9. LLDLIBS    = -lgl -lm -limage
  10. CFILES    = atlantis.c dolphin.c swim.c contour.c itoa.c shark.c whale.c
  11. HFILES    = objects.h
  12.  
  13. default all: ${TARGETS}
  14.  
  15. install:
  16.     $(MAKE) $(TARGETS)
  17.  
  18. include ${COMMONRULES}
  19.  
  20. ${TARGETS}: ${OBJECTS}
  21.     ${CCF} -o $@ ${OBJECTS} ${LDFLAGS}
  22.